C# |
---|
public static Byte[] TextToBase64Bytes(String text) |
C# |
---|
using LJCNetCommon; // Encodes a Text value to a Base64 byte array. private static void TextToBase64Bytes() { // Create Text from Base64 byte array. byte[] base64Bytes = NetCommon.TextToBase64Bytes("Text"); // Check the text. string text = NetCommon.Base64BytesToText(base64Bytes); } |